- /* sioremdb.cpp by K.Tsuru */
- // function ID = 407 BRADIX
- /***************************************
- SInteger class
- It provides the remainder operation m%n.
- It converts "n" to an integer.
- ****************************************/
- #ifndef SN_H
- #include "sn.h"
- #endif
- SInteger operator%(const SInteger& m, double n){
- SInteger d(n);
- Ldiv_t r;
- IIDiv(m, d, r, 1);
- return r.rem;
- }
sioremdb.cpp : last modifiled at 2015/12/14 20:13:54(396 bytes)
created at 2016/04/25 14:53:17
The creation time of this html file is 2017/10/25 11:09:45 (Wed Oct 25 11:09:45 2017).